-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Replace IsDisposable with Dispose + Refactor #27
Conversation
0673e5b
to
334eab8
Compare
@@ -24,7 +24,7 @@ | |||
</ItemGroup> | |||
|
|||
<ItemGroup> | |||
<ProjectReference Include="..\PipelineNet\PipelineNet.csproj" PrivateAssets="compile;contentfiles;build;analyzers" /> | |||
<ProjectReference Include="..\PipelineNet\PipelineNet.csproj" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I removed this as it forces me to install both packages separately.
Finally(typeof(TFinally)); | ||
where TFinally : IAsyncFinally<TParameter, TReturn> | ||
{ | ||
_finallyType = typeof(TFinally); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is performance optimization. The finally type is already checked in where
contraint.
The PR for #26.